home *** CD-ROM | disk | FTP | other *** search
/ Steal This CD / steal_this_cd.iso / Chapter 03 - Hacking People, Places, and Things / sparks.exe / {app} / actions / UploadEntry.cheetah < prev    next >
Text File  |  2005-03-17  |  1KB  |  63 lines

  1. #filter UnicodeSafeFilter
  2. <h3>
  3. '$htmlsafe($etitle)'
  4. </h3>
  5. <div style="padding: 5px; background: #FFDDDD">
  6. $entry.GetContent
  7. </div>
  8.  
  9. ##
  10. ##    START
  11. ##
  12. #if $entry.attachments
  13. <h4>Media Files</h4>
  14. <table>
  15. #for attachment in $entry.attachments
  16. <tr>
  17.  
  18. <td valign="top" align="left" width=36>
  19. #if $MediaType($attachment) == $IS_AUDIO
  20. <img src="/images/icon-32x32-music.png" border=0></a>
  21. #elif $MediaType($attachment) == $IS_VIDEO
  22. <img src="/images/icon-32x32-video.png" border=0>
  23. #else
  24.  
  25. #end if
  26. </td>
  27. <td valign="top">
  28. ${htmlsafe($attachment.GetAttachmentName)}
  29. <br>
  30. <font size=1>
  31. </font>
  32. </td>
  33. </tr>
  34. #end for
  35. </table>
  36. #end if
  37. ##
  38. ##    END
  39. ##
  40.  
  41. #if $platform != "msw"
  42. <hr>
  43. #end if
  44.  
  45. <h4>
  46. Right-Click Actions
  47. </h4>
  48. <ul>
  49. <li>
  50. <span class=uiitem>Edit</span>: 
  51. edit this podcast
  52.  
  53. <li>
  54. <span class=uiitem>Publish</span>: 
  55. when checked, this podcast is being published;
  56. when unchecked, the podcast will be moved back to the draft state
  57.  
  58. <li>
  59. <span class=uiitem>Delete</span>:
  60. delete this podcast
  61.  
  62. </ul>
  63.